home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / include / asm / setup.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-09  |  1.4 KB  |  54 lines

  1. #ifndef _ASM_X86_SETUP_H
  2. #define _ASM_X86_SETUP_H
  3.  
  4. #define COMMAND_LINE_SIZE 2048
  5.  
  6. #ifndef __ASSEMBLY__
  7.  
  8. /* Interrupt control for vSMPowered x86_64 systems */
  9. void vsmp_init(void);
  10.  
  11. #ifdef CONFIG_X86_VISWS
  12. extern void visws_early_detect(void);
  13. extern int is_visws_box(void);
  14. #else
  15. static inline void visws_early_detect(void) { }
  16. static inline int is_visws_box(void) { return 0; }
  17. #endif
  18.  
  19. /*
  20.  * Any setup quirks to be performed?
  21.  */
  22. struct mpc_config_processor;
  23. struct mpc_config_bus;
  24. struct mp_config_oemtable;
  25. struct x86_quirks {
  26.     int (*arch_pre_time_init)(void);
  27.     int (*arch_time_init)(void);
  28.     int (*arch_pre_intr_init)(void);
  29.     int (*arch_intr_init)(void);
  30.     int (*arch_trap_init)(void);
  31.     char * (*arch_memory_setup)(void);
  32.     int (*mach_get_smp_config)(unsigned int early);
  33.     int (*mach_find_smp_config)(unsigned int reserve);
  34.  
  35.     int *mpc_record;
  36.     int (*mpc_apic_id)(struct mpc_config_processor *m);
  37.     void (*mpc_oem_bus_info)(struct mpc_config_bus *m, char *name);
  38.     void (*mpc_oem_pci_bus)(struct mpc_config_bus *m);
  39.     void (*smp_read_mpc_oem)(struct mp_config_oemtable *oemtable,
  40.                                     unsigned short oemsize);
  41.     int (*setup_ioapic_ids)(void);
  42. };
  43.  
  44. extern struct x86_quirks *x86_quirks;
  45. extern unsigned long saved_video_mode;
  46.  
  47. #ifndef CONFIG_PARAVIRT
  48. #define paravirt_post_allocator_init()    do {} while (0)
  49. #endif
  50. #endif /* __ASSEMBLY__ */
  51.  
  52.  
  53. #endif /* _ASM_X86_SETUP_H */
  54.